HTMLify
style.css
Views: 20 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | * { padding: 0; margin: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; height: 100vh; font-family: sans-serif; background: #000; color: #fff; } p { font-size: 3rem; } .js { color: yellow; } .typed-text { color: #20c20e; } .cursor { background: #20c20e; } |